#include using namespace std; class Date{ private: int day, month, year; public: void printDate(); void setDay(int d); void setMonth(int m); void setYear(int y); }; void Date::printDate(){ cout<<"The Date is (d.m.y) : "<